home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / LIBRARY / DMTDEMOS / BOOTDRV.DEM next >
Text File  |  1994-07-02  |  256b  |  16 lines

  1. program BootDrvSample;
  2.  
  3.  uses crt, DMT;
  4.  
  5.  var
  6.    BootDrive : char;
  7.  
  8. begin
  9.   Color( 7, 0 );
  10.   clrscr;
  11.  
  12.   BootDrive := BootDrv;   { Call BootDrv function }
  13.  
  14.   writeln( #13#10, 'Drive ', BootDrive , ': was used to load DOS.' );
  15.   GetEnter;
  16. end.